tests: Add missing margin for testentrycompletion
authorAlexander Mikhaylenko <alexm@gnome.org>
Sun, 10 May 2020 22:47:39 +0000 (03:47 +0500)
committerAlexander Mikhaylenko <alexm@gnome.org>
Sun, 10 May 2020 22:47:39 +0000 (03:47 +0500)
tests/testentrycompletion.c

index 2f726b53efe239ff1db83bbc488863596499b61c..e06dc3f5ecbf9005e41600c532d95c3a6a3d9f1d 100644 (file)
@@ -314,6 +314,10 @@ main (int argc, char *argv[])
   g_signal_connect (window, "destroy", G_CALLBACK (quit_cb), &done);
   
   vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 2);
+  gtk_widget_set_margin_start (vbox, 5);
+  gtk_widget_set_margin_end (vbox, 5);
+  gtk_widget_set_margin_top (vbox, 5);
+  gtk_widget_set_margin_bottom (vbox, 5);
   gtk_window_set_child (GTK_WINDOW (window), vbox);
     
   label = gtk_label_new (NULL);